OpenBuildings GenerativeComponents Help

Names

The names of variables and other symbolic values follow the standard convention of most programming languages: A letter or an underscore character, followed by any number of letters, digits, and/or underscore characters.

Names are case-sensitive; the names lineLength and LineLength are considered different names.

Examples

Examples of valid names:

count
k
TOTAL_HEIGHT
point01

Examples of unacceptable names:

3BlindMice  (starts with a digit)
odds-&-ends (includes illegal characters)